home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / othergnu / texinf~1.zoo / texinfo.st / info / fakemint.h next >
Encoding:
C/C++ Source or Header  |  1993-04-16  |  391 b   |  25 lines

  1. /*
  2.  * Dummy functions which are needed when we are not compiling
  3.  * with MiNT libraries.  For MiNT they are "real" enough.
  4.  */
  5.  
  6. #ifndef __MINT__
  7. #include <compiler.h>
  8.  
  9. long    sigsetmask    __PROTO((long mask));
  10. long    sigblock    __PROTO((long mask));
  11. #define sigmask(sig) (1L << (sig))
  12.  
  13. long
  14. sigsetmask(long mask)
  15. {
  16.   return mask;
  17. }
  18.  
  19. long
  20. sigblock(long mask)
  21. {
  22.   return mask;
  23. }
  24. #endif /* __MINT__ */
  25.